Add simpler fix for viewing plexos output#863
Add simpler fix for viewing plexos output#863harrysorensennrel wants to merge 2 commits intoNatLabRockies:gh-pagesfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Plexos run documentation to provide a simpler method for viewing SLURM output by converting it to UTF-8 with iconv.
Changes:
- Replaces the Vim-based “remove special characters” guidance with an
iconvconversion approach. - Updates the note explaining why SLURM output may display incorrectly.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| ``` | ||
| # On PC | ||
| :%s/<CTRL-2>//g | ||
| # On Mac | ||
| %s/<CTRL-SHIFT-2>//g | ||
| iconv -f UTF-16 -t UTF-8 your_output_file.txt | ||
| ``` |
There was a problem hiding this comment.
The iconv example currently just writes the converted content to stdout; readers may expect a converted file. Consider showing either an explicit output (via -o or shell redirection) or piping to a pager (e.g., | less) since the stated goal is “viewing” the output. Also, other code blocks in this doc use language tags (e.g., bash), so add one here for consistency.
There was a problem hiding this comment.
@copilot apply changes based on this feedback
Co-authored-by: Copilot <[email protected]>
Use the iconv command to allow viewing of plexos outputs.